CGIVALS

CGIVALS class is a data structure that represents the value key pairs that a cgi query string represents. IE. ("?foo=bar&foobar=be") where this query string has two CGIVALs contained within. this class allows us to store variables and logically describe what those variables are and assign a mode.

class CGIVALS {
string name;
string value;
CGIMODES mode;
CGI_VAR_TYPE type;
CGIFILE fData;
}

Meta